Exceptions.js ➔ EditorException   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
c 0
b 0
f 0
nc 1
nop 1
dl 0
loc 5
rs 10
1
const DataException = function(message)
2
{
3
  this.message = message;
4
  this.name = 'DataException';
5
};
6
const EditorException = function(message)
7
{
8
  this.message = message;
9
  this.name = 'EditorException';
10
};
11
12
export {
13
  DataException,
14
  EditorException
15
}
16